home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / editor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  423 b   |  18 lines

  1.  
  2. #ifndef CNET_EDITOR
  3. #define CNET_EDITOR
  4.  
  5. struct DrawElement {
  6.     UBYTE    x;                // x screen position
  7.     UBYTE    y;                // y screen position
  8.     UBYTE    att;            // the character's attribute (colors)
  9.     UBYTE    att2;            // the character's attribute (others)
  10.     UBYTE    c;                // the character
  11.     UBYTE    att0;            // Was the attribute (underneath)
  12.     UBYTE    att20;        // Was the attribute (underneath)
  13.     UBYTE    c0;            // Was the character (underneath)
  14. };
  15.  
  16.  
  17. #endif
  18.